home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / alib / csup / intuition_support / buildeasyrequest.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-19  |  491 b   |  20 lines

  1.  
  2. /* Intuition tag call */
  3.  
  4. #include <exec/types.h>
  5. //#include <clib/intuition_protos.h>
  6.  
  7. #ifndef HYPER
  8. #define HYPER
  9. #endif
  10.  
  11. typedef struct TagItem     TagItem;
  12. struct Window *BuildEasyRequestArgs( struct Window *window,
  13.     struct EasyStruct *easyStruct, unsigned long idcmp, APTR args );
  14.  
  15. struct Window *
  16. HYPER ## BuildEasyRequest( struct Window *window,struct EasyStruct *easyStruct, unsigned long idcmp, APTR args ) 
  17. {
  18.     return BuildEasyRequestArgs(window,easyStruct,idcmp,(TagItem *)&args);
  19. }
  20.